home *** CD-ROM | disk | FTP | other *** search
/ Interactive Preview: Enemy of the State / Interactive Preview: Enemy of the State.iso / pc / main.dxr / 00550_L.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  551 b   |  28 lines

  1. on mouseDown me
  2.   repeat while the stillDown
  3.     set the memberNum of sprite the spriteNum of me to 278
  4.     updateStage()
  5.   end repeat
  6. end
  7.  
  8. on mouseUp me
  9.   if rollOver(the clickOn) then
  10.     case the volume of sound 10 of
  11.       0:
  12.         set the volume of sound 10 to 255
  13.         set the memberNum of sprite the spriteNum of me to 277
  14.       otherwise:
  15.         set the volume of sound 10 to 0
  16.         set the memberNum of sprite the spriteNum of me to 278
  17.     end case
  18.   end if
  19. end
  20.  
  21. on mouseEnter me
  22.   cursor(280)
  23. end
  24.  
  25. on mouseLeave me
  26.   cursor(0)
  27. end
  28.